// Lang_20 [command line arguments].nova // The application class. class CommandLineArgumentsApp { // Application class's "main" function. public static void main( String[] args ) { // Iterate through and output the command line arguments. for ( uint loopIndex = 0; loopIndex < args.length; loopIndex++ ) { Stream.writeLine( args[ loopIndex ] ); } } }